home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1997 December / PC Pro December 1997 CD-Rom coverdisc.iso / symantec / dbAnywh / JAVA.BIN / CLASSES.ZIP / sun / tools / debug / RemoteBoolean.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-12-14  |  668 b   |  23 lines

  1. package sun.tools.debug;
  2.  
  3. public class RemoteBoolean extends RemoteValue {
  4.    private boolean value;
  5.  
  6.    RemoteBoolean(boolean var1) {
  7.       super(0);
  8.       this.value = var1;
  9.    }
  10.  
  11.    public boolean get() {
  12.       return this.value;
  13.    }
  14.  
  15.    public String typeName() {
  16.       return new String("boolean");
  17.    }
  18.  
  19.    public String toString() {
  20.       return (new Boolean(this.value)).toString();
  21.    }
  22. }
  23.